home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib8 / v_10_06 / 1006088a < prev    next >
Encoding:
Text File  |  1995-11-01  |  200 b   |  16 lines

  1. /* LISTING 1 */
  2.  
  3. extern int g;
  4.  
  5. f1() 
  6. {
  7.     int i;
  8.     int *p, *q, *r;
  9.     int a[200], b[200] ,c[200];
  10.  
  11.     p = a; q = b; r = c;
  12.  
  13.     for( i=0; i<g; ++i )
  14.         *p++ = *q++ / *r++;
  15. }
  16.